home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / archive / xmenu10a.arj / XMENU.CFG < prev    next >
Text File  |  1993-09-01  |  3KB  |  93 lines

  1. A 103
  2. ;DEBUG SCRIPT.       Usage\>DEBUG XMENU.COM <XMENU.CFG
  3. ;
  4. ;creates new program, XMENU2.COM.  Use ASCII text editor.
  5. ;
  6. ;
  7. ;NORMAL    default 70, black on white.  See COLORMAP.COM
  8. DB  70
  9. ;BAR       default 30, black on cyan
  10. DB  30
  11. ;MENU      default 1E, bright yellow on blue
  12. DB  1E
  13. ;HEAD/FOOT default 71, blue on white
  14. DB  71
  15. ;
  16. ;Edit text within quotes.  See end comment.
  17. ;                          Zeros must align vertically.
  18. ;
  19. ;ZIP_VIEW
  20. DB  "PKUNZIP -C %F %A | VIEW /R       ",0
  21. ;ZIP_EXTRACT
  22. DB  "PKUNZIP -E %F %A                 ",0
  23. ;ZIP_DELETE
  24. DB  "PKZIP -D %F %A                   ",0
  25. ;ZIP_FRESHEN
  26. DB  "PKZIP -F %F %A                   ",0
  27. ;ZIP_SFX
  28. DB  "ZIP2EXE %F                       ",0
  29. ;
  30. ;LHA_VIEW
  31. DB  "LHA P %F %A | VIEW /R            ",0
  32. ;LHA_EXTRACT
  33. DB  "LHA E %F %A                      ",0
  34. ;LHA_DELETE
  35. DB  "LHA D %F %A                      ",0
  36. ;LHA_FRESHEN
  37. DB  "LHA F %F %A                      ",0
  38. ;LHA_SFX
  39. DB  "LHA S /x1 /t %F                  ",0
  40. ;
  41. ;ARJ_VIEW
  42. DB  "ARJ P %F %A | VIEW /R            ",0
  43. ;ARJ_EXTRACT
  44. DB  "ARJ E -jd0 %F %A                 ",0
  45. ;ARJ_DELETE
  46. DB  "ARJ D %F %A                      ",0
  47. ;ARJ_FRESHEN
  48. DB  "ARJ F -r %F %A                   ",0
  49. ;ARJ_SFX
  50. DB  "ARJ F -je %F                     ",0
  51. ;
  52. ;ZOO_VIEW
  53. DB  "ZOO -P %F %A | VIEW /R           ",0
  54. ;ZOO_EXTRACT
  55. DB  "ZOO -E %F %A                     ",0
  56. ;ZOO_DELETE
  57. DB  "ZOO -D %F %A                     ",0
  58. ;ZOO_FRESHEN
  59. DB  "ZOO -F %F %A                     ",0
  60. ;
  61. ;ARC_VIEW
  62. DB  "ARC P %F %A | VIEW /R            ",0
  63. ;ARC_EXTRACT
  64. DB  "ARC E %F %A                      ",0
  65. ;ARC_DELETE
  66. DB  "ARC D %F %A                      ",0
  67. ;ARC_FRESHEN
  68. DB  "ARC F %F %A                      ",0
  69. ;ARC_SFX
  70. DB  "MKSARC %F                        ",0
  71. ;
  72. ;PAK_VIEW
  73. DB  "PAK P %F %A | VIEW /R            ",0
  74. ;PAK_EXTRACT
  75. DB  "PAK E %F %A                      ",0
  76. ;PAK_DELETE
  77. DB  "PAK D %F %A                      ",0
  78. ;PAK_FRESHEN
  79. DB  "PAK F %F %A                      ",0
  80. ;PAK_SFX
  81. DB  "PAK C %F /EXE                    ",0
  82.  
  83. N XMENU2.COM
  84. W
  85. Q
  86.  
  87.           Only the text within quote marks may be modified.
  88.           %F is the original filespec (archive name) specified on 
  89.      the command line after XMENU.
  90.           %A is replaced by the selected file (or by the list of 
  91.      file names if many files are tagged for extracting).
  92.           DO NOT CHANGE THE LENGTH OF ANY LINE.  Check when you 
  93.      are done that all terminating zeros align vertically.